home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-07-22 | 559 b | 30 lines | [TEXT/TCEd] |
- #
- # SumScores
- #
- # Last Modified: Friday, June 27, 1991 at 11:46 PM
- # Macro Files for Preditor
- #
- # Example macro the sums up scores for a list of people.
- # This list is in the file "Score_List"
- #
- # © Copyright Evatac Software 1988-1991
- # All rights reserved
- #
-
- total = 0 # clear total count
- x = 1 # line number count
-
- Open(~Preditor + ":Macros:Score_List", "ar")
- Target("Score_List")
-
- While (Valid(%x))
- Select([%x]≤0)
- If (!search("p", "[0-9][0-9]*$", NULL) ) ; break; end
-
- total = total + Select(§)
- x = x + 1
- End
-
- Alert("s", "Total = " + total)
-
-